golang.org/x/net/http2.ClientConn.singleUse (field)

7 uses

	golang.org/x/net/http2 (current package)
		transport.go#L297: 	singleUse     bool                 // whether being used for a single http.Request
		transport.go#L745: 		singleUse:             singleUse,
		transport.go#L936: 		Closing:              cc.closing || cc.singleUse || cc.doNotReuse || cc.goAway != nil,
		transport.go#L958: 	if cc.singleUse && cc.nextStreamID > 1 {
		transport.go#L1034: 		cc.vlogf("http2: Transport closing idle conn %p (forSingleUse=%v, maxStream=%v)", cc, cc.singleUse, nextID-2)
		transport.go#L2097: 	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
		transport.go#L2100: 			cc.vlogf("http2: Transport closing idle conn %p (forSingleUse=%v, maxStream=%v)", cc, cc.singleUse, cc.nextStreamID-2)